home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 873 b | 44 lines | [TEXT/CWIE] |
- // DModelessStuffData -- data class for Everything
-
- #pragma once
-
- #include "AMSignaler.h"
-
-
- const long idTools3 = 'Too3';
- const long idFromValuesList4 = 'Fro5';
- const long idFromMenu3 = 'Fro6';
- const long idTextList3 = 'Tex6';
-
- class AMEngine;
-
- //----------
- class DModelessStuffData : public AMSignaler {
- public:
- DModelessStuffData ();
- virtual ~DModelessStuffData ();
-
- public:
- void ReadFromFile (AMEngine* engine);
- void WriteToFile (AMEngine* engine);
-
- public:
- SInt16 GetTools3 () const;
- void SetTools3 (SInt16 inValue);
-
- SInt16 GetFromValuesList4 () const;
- void SetFromValuesList4 (SInt16 inValue);
-
- SInt16 GetFromMenu3 () const;
- void SetFromMenu3 (SInt16 inValue);
-
- SInt16 GetTextList3 () const;
- void SetTextList3 (SInt16 inValue);
-
- protected:
- SInt16 mTools3;
- SInt16 mFromValuesList4;
- SInt16 mFromMenu3;
- SInt16 mTextList3;
- };
-